Removed Dummy UI and dead code#38
Conversation
…tion or class' Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 3d13971213
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| @@ -1,111 +0,0 @@ | |||
| import { useState } from 'react'; | |||
There was a problem hiding this comment.
Keep frontend tests aligned with removed auth components
Deleting this component (and AuthProvider) without updating frontend/src/tests/LoginPage.test.jsx breaks the default vitest run workflow: the test file still imports ../components/LoginPage and ../components/AuthProvider, so module resolution fails before tests execute. If login is intentionally removed, those tests should be deleted or rewritten in the same change to keep CI green.
Useful? React with 👍 / 👎.
| myenv/ | ||
| venv/ | ||
|
|
||
| *.md |
There was a problem hiding this comment.
Stop ignoring all Markdown files
Adding *.md at the repository root causes every new Markdown document (design docs, runbooks, ADRs, etc.) to be silently ignored by Git, which makes documentation changes easy to lose and hard to review. This is a broad ignore rule unrelated to UI cleanup and is likely to create maintainability issues for future contributions.
Useful? React with 👍 / 👎.
close #37 removes dummy UI elements and dead code